home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CinE CD 6
/
CinE CD ROM 06.iso
/
mac
/
Shared.Cst
/
00104_Script_scroll
< prev
next >
Wrap
Text File
|
1996-06-22
|
503b
|
22 lines
global windowy, ymin, ymax, save_pos
on scroll deltay
set v = the top of sprite 1
if (deltay > 0) then -- scroll up
if (v + deltay) <= ymax then
set the locV of sprite 1 = v + deltay
else
set the locV of sprite 1 = ymax
end if
else -- scroll down
if (v + deltay) >= ymin then
set the locV of sprite 1 = v + deltay
else
set the locV of sprite 1 = ymin
end if
end if
set save_pos = the locV of sprite 1
updatestage
end